home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / mini_poo.swf / scripts / DefineButton2_64 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2010-11-09  |  311 b   |  19 lines

  1. on(release){
  2.    if(_root.paused == 0)
  3.    {
  4.       oldTimp = getTimer();
  5.       _root.paused = 1;
  6.    }
  7.    else
  8.    {
  9.       timpInter = getTimer() - oldTimp;
  10.       i = 0;
  11.       while(i <= 9)
  12.       {
  13.          _root["b" + i].timpIni += timpInter;
  14.          i++;
  15.       }
  16.       _root.paused = 0;
  17.    }
  18. }
  19.